home *** CD-ROM | disk | FTP | other *** search
- # If you don't want the output of a cron job mailed to you, you have to direct
- # any output to /dev/null. We'll do this here since these jobs should run
- # properly on a newly installed system, but if they don't the average newbie
- # might get quite perplexed about getting strange mail every 5 minutes. :^)
- #
- # Run ANY_program every 5 minutes
- # 0,5,10,15,20,25,30,35,40,45,50,55 * * * * /usr/bin/ANY_program 1>/dev/null 2>/dev/null
- #
- # This touches a filename in the temp directory so that you can see cron is
- # working if the timestamp is current. Comment it out if it bugs you. :^)
- * * * * * touch /var/.crond_running 1>/dev/null 2>dev/null
- #
- # If you have a dynamic dns account and you have a semi permanent IP then you
- # will want to uncomment the next line so that your account will be checked to
- # make sure that it has been updated within the last 30 days.
- # 0 */1 1 jan-dec * exec dyndns 1>/dev/null 2>/dev/null
- #
- # If you want your time server to update automaticly everyday then uncomment
- # the line below. This is not recommended for dialup connections. The server
- # will update automaticly everytime there is a new external IP address
- # regardless of this setting.
- # 0 0 * * * exec synctime 1>/dev/null 2>/dev/null
- #
-